home *** CD-ROM | disk | FTP | other *** search
/ Java Interactive Reference Guide / Java Interactive Reference Guide.iso / autorun / java_d.dir / 00104_Field_4.txt < prev    next >
Text File  |  1980-01-11  |  11KB  |  328 lines

  1. JavaScript Expressions and Operators
  2.  
  3.  
  4.  
  5. ΓÇóExpressions ΓÇóOperators 
  6. ΓÇóArithmetic Operators ΓÇóBitwise Operators ΓÇóLogical Operators ΓÇóComparison Operators ΓÇóString Operators ΓÇóOperator Precedence 
  7.  
  8.  
  9.  
  10.  
  11. Expressions
  12.  
  13.  
  14.  
  15. An expression is any valid set of literals, variables, operators, and expressions that evaluates to a single value. The value may be a number, a string, or a logical value. Conceptually, there are two types of expressions: those that assign a value to a variable, and those that simply have a value. For example, the expression 
  16.  
  17. x = 7 
  18.  
  19. is an expression that assigns x the value 7. This expression itself evaluates to 7. Such expressions use assignment operators. On the other hand, the expression 
  20.  
  21. 3 + 4 
  22.  
  23. simply evaluates to 7; it does not perform an assignment. The operators used in such expressions are referred to simply as operators. 
  24.  
  25. JavaScript has the following kinds of expressions: 
  26.  
  27. ΓÇóArithmetic: evaluates to a number, for example ΓÇóString: evaluates to a character string, for example "Fred" or "234" ΓÇóLogical: evaluates to true or false 
  28.  
  29.  
  30.  
  31. The special keyword null denotes a null value. In contrast, variables that have not been assigned a value are undefined, and cannot be used without a run-time error. 
  32.  
  33. Conditional Expressions
  34.  
  35.  
  36.  
  37. A conditional expression can have one of two values based on a condition. The syntax is 
  38.  
  39.  
  40. (condition) ? val1 : val2
  41.  
  42.  
  43.  
  44.  
  45.  
  46. If condition is true, the expression has the value of val1, Otherwise it has the value of val2. You can use a conditional expression anywhere you would use a standard expression. 
  47.  
  48. For example, 
  49.  
  50.  
  51. status = (age >= 18) ? "adult" : "minor"
  52.  
  53.  
  54.  
  55. This statement assigns the value "adult" to the variable status if age is eighteen or greater. Otherwise, it assigns the value "minor" to status. 
  56.  
  57. Assignment Operators (=, +=, -=, *=, /=)
  58.  
  59.  
  60.  
  61. An assignment operator assigns a value to its left operand based on the value of its right operand. The basic assignment operator is equal (=), which assigns the value of its right operand to its left operand. That is, x = y assigns the value of y to x. 
  62.  
  63. The other operators are shorthand for standard arithmetic operations as follows: 
  64.  
  65. ΓÇóx += y means x = x + y ΓÇóx -= y means x = x - y ΓÇóx *= y means x = x * y ΓÇóx /= y means x = x / y ΓÇóx %= y means x = x % y 
  66.  
  67.  
  68.  
  69. There are additional assignment operators for bitwise operations: 
  70.  
  71. ΓÇóx <<= y means x = x << y ΓÇóx >>= y means x = x >> y ΓÇóx >>>= means x = x >>> y ΓÇóx &= means x = x & y ΓÇóx ^= means x = x ^ y ΓÇóx |= means x = x | y 
  72.  
  73.  
  74.  
  75. Operators
  76.  
  77.  
  78.  
  79. LiveScript has arithmetic, string, and logical operators. There are both binary and unary operators. A binary operator requires two operands, one before the operator and one after the operator: 
  80.  
  81. operand1 operator operand2 
  82.  
  83. For example, 3 + 4 or x * y 
  84.  
  85. A unary operator requires a single operand, either before or after the operator: 
  86.  
  87. operator operand 
  88.  
  89. or 
  90.  
  91. operand operator 
  92.  
  93. For example x++ or ++x. 
  94.  
  95. Arithmetic Operators
  96.  
  97.  
  98.  
  99. Arithmetic operators take numerical values (either literals or variables) as their operands and return a single numerical value. 
  100.  
  101. Standard Arithmetic Operators
  102.  
  103.  
  104.  
  105. The standard arthmetic operators are addition (+), subtraction (-), multiplication (*), and division (/). These operators work in the standard way. 
  106.  
  107. Modulus (%)
  108.  
  109.  
  110.  
  111. The modulus operator is used as follows: 
  112. var1 % var2 
  113.  
  114. The modulus operator returns the first operand modulo the second operand, that is, var1 modulo var2, in the statement above, where var1 and var2 are variables. The modulo function is the remainder of integrally dividing var1 by var2. For example, 12 % 5 returns 2. 
  115.  
  116. Increment (++)
  117.  
  118.  
  119.  
  120. The increment operator is used as follows: 
  121. var++ or ++var 
  122.  
  123. This operator increments (adds one to) its operand and returns a value. If used postfix, with operator after operand (for example x++), then it returns the value before incrementing. If used prefix with operator before operand (for example, ++x), then it returns the value after incrementing. 
  124.  
  125. For example, if x is 3, then the statement 
  126.  
  127. y = x++ 
  128.  
  129. increments x to 4 and sets y to 3. 
  130.  
  131. If x is 3, then the statement 
  132.  
  133. y = ++x 
  134.  
  135. increments x to 4 and sets y to 4. 
  136.  
  137. Decrement (--)
  138.  
  139.  
  140.  
  141. The decrement operator is used as follows: 
  142.  
  143. var-- or --var 
  144.  
  145. This operator decrements (subtracts one from) its operand and returns a value. If used postfix (for example x--) then it returns the value before decrementing. If used prefix (for example, --x), then it returns the value after decrementing. 
  146.  
  147. For example, if x is 3, then the statement 
  148.  
  149. y = x-- 
  150.  
  151. decrements x to 2 and sets y to 3. 
  152.  
  153. If x is 3, then the statement 
  154.  
  155. y = --x 
  156.  
  157. decrements x to 2 and sets y to 2. 
  158.  
  159. Unary negation (-)
  160.  
  161.  
  162.  
  163. The unary negation operator must precede its operand. It negates its operand. For example, 
  164.  
  165. x = -x 
  166.  
  167. negates the value of x; that is if x were 3, it would become -3. 
  168.  
  169. Bitwise Operators
  170.  
  171.  
  172.  
  173. Bitwise operators treat their operands as a set of bits (zeros and ones), rather than as decimal, hexadecimal, or octal numbers. For example, the decimal number 9 has a binary representation of 101. Bitwise operators perform their operations on such binary representations, but they return standard JavaScript numerical values. 
  174.  
  175. Bitwise Logical Operators
  176.  
  177.  
  178.  
  179. The bitwise operators are: 
  180.  
  181. ΓÇóBitwise AND &. Returns a one if both operands are ones. ΓÇóBitwise OR |. Returns a one if either operand is one. ΓÇóBitwise XOR ^. Returns a one if one but not both operands are one. 
  182.  
  183.  
  184.  
  185. The bitwise logical operators work conceptually as follows: 
  186.  
  187. ΓÇóThe operands are converted to 32-bit integers, and expressed a series of bits (zeros and ones). ΓÇóEach bit in the first operand is paired with the corresponding bit in the second operand: first bit to first bit, second bit to second bit, and so on. ΓÇóThe operator is applied to each pair of bits, and the result is constructed bitwise. 
  188.  
  189.  
  190.  
  191. Bitwise Shift Operators
  192.  
  193.  
  194.  
  195. The bitwise shift operators are: 
  196.  
  197. ΓÇóLeft Shift (<lt;) ΓÇóSign-propagating Right Shift (>>) ΓÇóZero-fill Right shift (>>>) 
  198.  
  199.  
  200.  
  201. The shift operators take two operands: the first is a quantity to be shifted, and the second specifies the number of bit positions by which the first operand is to be shifted. The direction of the shift operation is controlled by the operator used. 
  202.  
  203. Shift operators convert their operands to 32-bit integers, and return a result of the same type as the left operator. 
  204.  
  205. Left Shift (<lt;)
  206.  
  207.  
  208.  
  209. This operator shifts the first operand the specified number of bits to the left. Excess bits shifted off to the left are discarded. Zero bits are shifted in from the right. 
  210.  
  211. Example TBD. 
  212.  
  213. Sign-propagating Right Shift (>>) 
  214.  
  215.  
  216.  
  217. This operator shifts the first operand the specified number of bits to the right. Excess bits shifted off to the right are discarded. Copies of the leftmost bit are shifted in from the left. 
  218.  
  219. Example TBD. 
  220.  
  221. Zero-fill right shift (>>>)
  222.  
  223.  
  224.  
  225. This operator shifts the first operand the specified number of bits to the left. Excess bits shifted off to the right are discarded. Zero bits are shifted in from the left. 
  226.  
  227. Example TBD. 
  228.  
  229. Logical Operators
  230.  
  231.  
  232.  
  233. Logical operators take logical (Boolean) values as operands. They return a logical value. Logical values are true and false. 
  234.  
  235. And (&&)
  236.  
  237.  
  238.  
  239. Usage: expr1 && expr2 
  240.  
  241. The logical "and" operator returns true if both logical expressions expr1 and expr2 are true. Otherwise, it returns false. 
  242.  
  243. Or (||)
  244.  
  245.  
  246.  
  247. Usage: expr1 || expr2 
  248.  
  249. The logical "or" operator returns true if either logical expression expr1 or expr2 is true. If both expr1 and expr2 are false, then it returns false. 
  250.  
  251. Not (!)
  252.  
  253.  
  254.  
  255. Usage: !expr 
  256.  
  257. The logical "not" operator is a unary operator that negates its operand expression expr. That is, if expr is true, it returns false, and if expr is false, then it returns true. 
  258.  
  259. Short-Circuit Evaluation
  260.  
  261.  
  262.  
  263. As logical expressions are evaluated left to right, they are tested for possible "short circuit" evaluation using the following rule: 
  264.  
  265. ΓÇófalse && anything is short-circuit evaluated to false. ΓÇótrue || anything is short-circuit evaluated to true. 
  266.  
  267.  
  268.  
  269. The rules of logic guarantee that these evaluations will always be correct. Note that the anything part of the above expressions is not evaluated, so any side effects of doing so do not take effect. 
  270.  
  271. Comparison Operators (= =, >, >=, <, <=, !=)
  272.  
  273.  
  274.  
  275. A comparison operator compares its operands and returns a logical value based on whether the comparison is true or not. The operands may be numerical or string values. When used on string values, the comparisons are based on the standard lexicographical ordering. 
  276.  
  277. The operators are: 
  278.  
  279. ΓÇóEqual (= =): returns true if the operands are equal. ΓÇóNot equal (!=): returns true if the operands are not equal. ΓÇóGreater than (>): returns true if left operand is greater than right operand. Example: x > y returns true if x is greater than y. ΓÇóGreater than or equal to (>=): returns true if left operand is greater than or equal to right operand. Example: x >= y returns true if x is greater than or equal to y. ΓÇóLess than (<): returns true if left operand is less than right operand. Example: x < y returns true if x is less than y. ΓÇóLess than or equal to (<=): returns true if left operand is less than or equal to right operand. Example: x <= y returns true if x is less than or equal to y. 
  280.  
  281.  
  282.  
  283. String Operators
  284.  
  285.  
  286.  
  287. In addition to the comparison operators, which may be used on string values, the concatenation operator (+) concatenates two string values together, returning another string that is the union of the two operand strings. For example, 
  288.  
  289. "my " + "string" 
  290.  
  291. returns the string 
  292.  
  293. "my string" 
  294.  
  295. The shorthand assignment operator += can also be used to concatenate strings. For example, if the variable mystring is a string that has the value "alpha", then the expression 
  296.  
  297.  
  298. mystring += "bet"
  299.  
  300.  
  301.  
  302. evaluates to "alphabet" and assigns this value to mystring. 
  303.  
  304. Operator Precedence
  305.  
  306.  
  307.  
  308. The precedence of operators determines the order they are applied when evaluating an expression. You can override operator precedence by using parentheses. 
  309.  
  310. The precedence of operators, from lowest to highest is as follows: 
  311.  
  312. comma , 
  313. assignment = += -= *= /= %= <<= >>= >>>= &= ^= |= 
  314. conditional ?: 
  315. logical-or || 
  316. logical-and && 
  317. bitwise-or | 
  318. bitwise-xor ^ 
  319. bitwise-and & 
  320. equality == != 
  321. relational < <= > >= 
  322. shift <lt; >> >>> 
  323. addition/subtraction + - 
  324. multiply/divide * / % 
  325. negation/increment ! ~ - ++ -- 
  326. call, member () [] . 
  327.  
  328.